home *** CD-ROM | disk | FTP | other *** search
- name Mori-Seiki w/ Stock stop @ beginning.
-
- % 00
- N >4
- G 2
- X ->34
- Z ->34
- D 2
- I ->34
- K ->34
- U ->34
- W ->34
- P ->34
- A 60 P
- Q ->34
- q ->34 Q
- R ->34
- F >34
- T 4
- S >4
- M 2
-
- ModalGs 0 1 2 3 76 80 81 82 83 84 85 # List of g codes that are modal
-
- Sequence#s N 1 10 10 # Char, freq, incr & start
- First#? y # Y or N 'Output 1st sequence no.
-
- Comment ( ) # Begin End comment char.
-
- HCode Z # X or X U 'Horizontal char.
- VCode X # Y or Y V 'Vertical char.
- FeedCode F # Feed rate char.
-
- Coolant 8 9 8 # On, Off & Mist m codes
- SpeedType G 97 96 # CSS and RPM g codes
- FeedType G 95 94 # IPR & IPM g codes
-
-
- ByDiameter? Y # Y or N 'Output X val. by diameter
-
- RevSigns X I # List of letters to reverse signs
-
- CtrIncremental? Y # Y or N 'Inc or abs I & J
-
- Inc/Abs G 91 90 # Inc & Abs char. & values
-
- Inch/MM 20 21 # Inch & Metric g codes
-
- CtrCode K I # I J or R or I J K L
-
- Feed G1 # Linear move
- Rapid G0 # Rapid positioning word
- Cw G3 # Circular move clockwise
- Ccw G2 # Circular move counter clockwise
-
- UppercaseComments? Y # Y or N 'Require uppercase comments
-
- AutoThread # Automatic thread canned cycle
- G76 A[TParams] Q[VBite] R0
- G76 X[V] Z[H] R[StartAng] P[Depth] q[Peck1] F[Frate]
- end
-
- Drill # Drilling canned/manual cycle
- G1 Z[Depth] F[FRate]
- G0 Z[SClear]
- end
-
- Peck # Pecking canned/manual cycle
- None
- end
-
- Tap # Tapping canned/manual cycle
- G84 Z[H] F[FRate]
- end
-
- Ream # Reaming canned/manual cycle
- G85 Z[H] F[FRate]
- end
-
- Bore # Boring canned/manual cycle
- G74 R0
- G74 Z[H] R[SClear] F[FRate]
- end
-
- Cancel # Cancel a canned/manual cycle
- G80
- end
-
- StartCode # Start of the program
- %0
- End
-
- 1stToolChange # First tool change
- G0 M1
- G50 X0 Z0
- G0 T100
- G0 X0 Z0 T101
- M11
- M10
- G0 X0 Z0 T100
- T[Tool]
- G[FeedType] G[SpeedType] S[Speed] M[Direct]
- G0 X[V] Z[H] T[Comp] M[Cool]
- End
-
- Infeed # Enable cutter comp
- G1 X[V] Z[H] D[Dcomp] F[FRate]
- end
-
- Outfeed # Disable cutter comp
- G1 X[V] Z[H] F[FRate]
- end
-
- ToolChange # Secondary tool changes
- G0 Z[SClear]
- X0 T[LastTool]
- T[Tool]
- G[FeedType] G[SpeedType] S[Speed] M[Direct]
- G0 X[V] Z[H] T[Comp] M[Cool]
- End
-
- EndCode # End of the program
- G0 X0 Z0 T[Tool]
- M5
- M30
- %0
- End
-